Documents for PDF .NET Edition
GrapeCity.Documents.Imaging Assembly / GrapeCity.Documents.Common Namespace / StructList<T> Class / StructList<T> Constructor / StructList<T> Constructor(T[],Int32,Int32)
The array whose elements should be added to the StructList<T>.
The zero-based index of the first element in the array to add.
The number of elements to add.

In This Topic
    StructList<T> Constructor(T[],Int32,Int32)
    In This Topic
    Initializes a new instance of the StructList<T> class that contains elements copied from the specified array.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal array() As T, _
       ByVal arrayIndex As System.Integer, _
       ByVal count As System.Integer _
    )
    public StructList<T>( 
       T[] array,
       System.int arrayIndex,
       System.int count
    )

    Parameters

    array
    The array whose elements should be added to the StructList<T>.
    arrayIndex
    The zero-based index of the first element in the array to add.
    count
    The number of elements to add.
    See Also